Posted by Niclas from antarctis-ext.wise.edt.ericsson.se (194.237.142.11)on March 31, 1998 at 02:41:31:
In Reply to: Re: BigRedCroc V0.3 full release - driver, sources, screenshots posted by Dan M. on March 29, 1998 at 09:47:03:
If the application crashes BEFORE the logging
actually been written to file, you might never
get the last log.
That happens to me frequently here at work.
So a "better" way to see how far it gets could
be to do something like this:
{
static BOOL IsThisTheFirstRun = TRUE;
if(IsThisTheFirstRun == TRUE)
{
IsThisTheFirstRun = FALSE;
MessageBox(hwnd, "We got here!", "Log-Box", MB_ICONSTOP);
}
}
Then the software will halt untill you press ok
on your MessageBox, and thus you will se how far
you got :-)
Hope this helps!
/Niclas